home *** CD-ROM | disk | FTP | other *** search
/ CU Amiga Super CD-ROM 15 / CU Amiga Magazine's Super CD-ROM 15 (1997)(EMAP Images)(GB)[!][issue 1997-10].iso / CUCD / Graphics / Ghostscript / source / zfont42.c < prev    next >
C/C++ Source or Header  |  1996-11-13  |  3KB  |  108 lines

  1. /* Copyright (C) 1996 Aladdin Enterprises.  All rights reserved.
  2.   
  3.   This file is part of Aladdin Ghostscript.
  4.   
  5.   Aladdin Ghostscript is distributed with NO WARRANTY OF ANY KIND.  No author
  6.   or distributor accepts any responsibility for the consequences of using it,
  7.   or for whether it serves any particular purpose or works at all, unless he
  8.   or she says so in writing.  Refer to the Aladdin Ghostscript Free Public
  9.   License (the "License") for full details.
  10.   
  11.   Every copy of Aladdin Ghostscript must include a copy of the License,
  12.   normally in a plain ASCII text file named PUBLIC.  The License grants you
  13.   the right to copy, modify and redistribute Aladdin Ghostscript, but only
  14.   under certain conditions described in the License.  Among other things, the
  15.   License requires that the copyright notice and this notice be preserved on
  16.   all copies.
  17. */
  18.  
  19. /* zfont42.c */
  20. /* Type 42 font creation operator */
  21. #include "ghost.h"
  22. #include "errors.h"
  23. #include "oper.h"
  24. #include "gsccode.h"
  25. #include "gsmatrix.h"
  26. #include "gxfont.h"
  27. #include "gxfont42.h"
  28. #include "bfont.h"
  29. #include "idict.h"
  30. #include "idparam.h"
  31. #include "store.h"
  32.  
  33. /* Forward references */
  34. private int z42_string_proc(P4(gs_font_type42 *, ulong, uint, const byte **));
  35.  
  36. /* <string|name> <font_dict> .buildfont11/42 <string|name> <font> */
  37. /* Build a type 11 (TrueType CID-keyed) or 42 (TrueType) font. */
  38. int
  39. build_gs_TrueType_font(os_ptr op, font_type ftype, const char _ds *bcstr,
  40.   const char _ds *bgstr, build_font_options_t options)
  41. {    build_proc_refs build;
  42.     ref *psfnts;
  43.     ref sfnts0;
  44. #define sfd (sfnts0.value.const_bytes)
  45.     gs_font_type42 *pfont;
  46.     font_data *pdata;
  47.     int code;
  48.  
  49.     code = build_proc_name_refs(&build, bcstr, bgstr);
  50.     if ( code < 0 )
  51.       return code;
  52.     check_type(*op, t_dictionary);
  53.     if ( dict_find_string(op, "sfnts", &psfnts) <= 0 )
  54.       return_error(e_invalidfont);
  55.     if ( (code = array_get(psfnts, 0L, &sfnts0)) < 0 )
  56.       return code;
  57.     if ( !r_has_type(&sfnts0, t_string) )
  58.       return_error(e_typecheck);
  59.     code = build_gs_primitive_font(op, (gs_font_base **)&pfont, ftype,
  60.                        &st_gs_font_type42, &build, options);
  61.     if ( code != 0 )
  62.       return code;
  63.     pdata = pfont_data(pfont);
  64.     ref_assign(&pdata->u.type42.sfnts, psfnts);
  65.     pfont->data.string_proc = z42_string_proc;
  66.     pfont->data.proc_data = (char *)pdata;
  67.     code = gs_type42_font_init(pfont);
  68.     if ( code < 0 )
  69.       return code;
  70.     return define_gs_font((gs_font *)pfont);
  71. }
  72. private int
  73. zbuildfont42(os_ptr op)
  74. {    return build_gs_TrueType_font(op, ft_TrueType, "%Type42BuildChar",
  75.                       "%Type42BuildGlyph", bf_options_none);
  76. }
  77.  
  78. /* ------ Initialization procedure ------ */
  79.  
  80. BEGIN_OP_DEFS(zfont42_op_defs) {
  81.     {"2.buildfont42", zbuildfont42},
  82. END_OP_DEFS(0) }
  83.  
  84. /* Procedure for accessing the sfnts array. */
  85. private int
  86. z42_string_proc(gs_font_type42 *pfont, ulong offset, uint length,
  87.   const byte **pdata)
  88. {    const font_data *pfdata = pfont_data(pfont);
  89.     ulong left = offset;
  90.     uint index = 0;
  91.  
  92.     for ( ; ; ++index )
  93.       { ref rstr;
  94.         int code = array_get(&pfdata->u.type42.sfnts, index, &rstr);
  95.         if ( code < 0 )
  96.           return code;
  97.         if ( !r_has_type(&rstr, t_string) )
  98.           return_error(e_typecheck);
  99.         if ( left < r_size(&rstr) )
  100.           { if ( left + length > r_size(&rstr) )
  101.           return_error(e_rangecheck);
  102.         *pdata = rstr.value.const_bytes + left;
  103.         return 0;
  104.           }
  105.         left -= r_size(&rstr);
  106.       }
  107. }
  108.